home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tpasswor.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  791 b   |  22 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TPasswordInputLine
  4. //    Include File:    tpasswor.h
  5. //    Purpose:    Do the same thing as an input line, just don't allow
  6. //            user to see the input!
  7. //    Remarks/Portability/Dependencies/Restrictions:
  8. //    Revision History:
  9. //        04-22-94    created
  10. #include"tpasswor.h"
  11.  
  12. TPasswordInputLine::TPasswordInputLine(const TRect& TR_bounds, int i_maxlen)
  13.     : TInputLine(TR_bounds, i_maxlen)    {
  14. //    Purpose:    Construct the password input line.
  15. //    Arguments:    TR_bounds    This size of the line.
  16. //            i_maxlen    The maximum size of the password.
  17. //    Return Value:    none
  18. //    Remarks/Portability/Dependencies/Restrictions:
  19. //        Really just made to properly call the TInputLine constructor.
  20. //    Revision History:
  21. //        04-22-94    created
  22. }